Vapi Std Errors OperationNotFound
The Vapi Std Errors OperationNotFound error indicates that the operation specified in the request could not be found.
Every API request specifies a service identifier and an operation identifier along with the parameters. If the API infrastructure is unable to find the requested resource or operation it reports this error.
This error can be reported by the API infrastructure for any operation, but it is specific to the API infrastructure, and should never be reported by the implementation of any operation.
Examples:
- A client provides an invalid service or operation identifier when invoking the operation using a dynamic interface (for example REST).
- A client invokes the operation from a resource, but that resource has not been installed.
Counterexamples:
- A client invokes a task scheduling operation, but provides an invalid service identifier or operation identifier. The Vapi Std Errors NotFound error would be used instead.
{
"messages": [
{
"id": "string",
"default_message": "string",
"args": [
"string"
],
"params": {
"params": {
"s": "string",
"dt": "string",
"i": 0,
"d": "number",
"l": "Vapi Std NestedLocalizableMessage Object",
"format": "string",
"precision": 0
}
},
"localized": "string"
}
],
"data": {},
"error_type": "string"
}